home *** CD-ROM | disk | FTP | other *** search
/ Aminet 4 / Aminet 4 - November 1994.iso / aminet / dev / m2 / m2_part1.lha / modula / dice / dice.LHA / dynamic / dynamic.lha / dynamic.h < prev    next >
C/C++ Source or Header  |  1991-04-26  |  484b  |  31 lines

  1.  
  2. /*
  3.  *  DYNAMIC.H
  4.  *
  5.  *  dynamic.library prototypes
  6.  */
  7.  
  8. #ifndef PD_DYNAMIC_H
  9. #define PD_DYNAMIC_H
  10.  
  11. #ifndef UTILITY_TAGITEM_H
  12. #include <utility/tagitem.h>
  13. #endif
  14.  
  15. #ifndef DYNAMIC_COMPILE
  16.  
  17. void *GetHyperSymbol(const char *, struct TagItem *);
  18. void *RelsHyperSymbol(void *, struct TagItem *);
  19. void FlushHyperLib(void);
  20.  
  21. void *GetHyperSymbolTags(const char *, Tag tag1, ...);
  22. void *RelsHyperSymbolTags(void *, Tag tag1, ...);
  23.  
  24. #endif
  25.  
  26. #define DT_END        0
  27. #define DT_TYPE     1
  28.  
  29. #endif
  30.  
  31.